home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / groff-base.postrm < prev    next >
Text File  |  2009-08-18  |  659b  |  25 lines

  1. #! /bin/sh -e
  2.  
  3. case $1 in
  4.     abort-install|abort-upgrade)
  5.     if [ -e /etc/tmac.man.local.moved-by-preinst ]; then
  6.         mv -f /etc/groff/man.local /etc/tmac.man.local
  7.         rm -f /etc/tmac.man.local.moved-by-preinst
  8.     fi
  9.     if [ -e /usr/share/groff/site-tmac.moved-by-preinst ]; then
  10.         mv -f /etc/groff /usr/share/groff/site-tmac
  11.         rm -f /usr/share/groff/site-tmac.moved-by-preinst
  12.     fi
  13.     if [ -d /usr/share/groff/site-tmac.old ]; then
  14.         mv -f /usr/share/groff/site-tmac.old /usr/share/groff/site-tmac
  15.     fi
  16.     ;;
  17. esac
  18.  
  19. # Automatically added by dh_installmime
  20. if which update-mime >/dev/null 2>&1; then update-mime; fi
  21. # End automatically added section
  22.  
  23.  
  24. exit 0
  25.